home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / Book Chapters / 03 - Advanced Graphics / Example 5 / main.h < prev    next >
Text File  |  1995-02-18  |  413b  |  26 lines

  1. //
  2. //    File: main.h
  3. //
  4. //    This file is the header for main.c.
  5. //
  6. //    2/18/95 -- Created by Mick
  7. //
  8.  
  9. // shield
  10. #ifndef _main_h_
  11. #define _main_h_
  12.  
  13. // include files
  14.  
  15. // global defines
  16.  
  17. // extern functions
  18.  
  19. // extern data
  20.  
  21. extern WindowPtr gMainWindow;                    // the window that we are drawing to
  22. extern CTabHandle gAppColorTable;            // the color table that we are drawing with
  23.  
  24. // end of shield
  25. #endif // #ifndef _main_h_
  26.